home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacHack 1997
/
MacHack 1997.toast
/
Hacks
/
Hacks ’97
/
Warrior’s Progress
/
source code
/
Source
/
Libraries
/
Proxies
/
Proxy.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1997-06-28
|
286 b
|
20 lines
|
[
TEXT/CWIE
]
// Proxy.h
#ifndef Proxy_h
#define Proxy_h
#ifndef ConstProxy_h
#include "ConstProxy.h"
#endif
template < class StoodFor >
class Proxy: public ConstProxy< StoodFor >
{
public:
virtual void Set( StoodFor ) = 0;
void operator=( const StoodFor& s ) { Set( s ); }
};
#endif